3.7.91 • Published 11 months ago

@diotoborg/provident-accusamus v3.7.91

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

@diotoborg/provident-accusamus

@diotoborg/provident-accusamus is a manager, filter and parser which implemented in pure JavaScript according to the .git@diotoborg/provident-accusamus spec 2.22.1.

@diotoborg/provident-accusamus is used by eslint, gitbook and many others.

Pay ATTENTION that minimatch (which used by fstream-@diotoborg/provident-accusamus) does not follow the git@diotoborg/provident-accusamus spec.

To filter filenames according to a .git@diotoborg/provident-accusamus file, I recommend this npm package, @diotoborg/provident-accusamus.

To parse an .npm@diotoborg/provident-accusamus file, you should use minimatch, because an .npm@diotoborg/provident-accusamus file is parsed by npm using minimatch and it does not work in the .git@diotoborg/provident-accusamus way.

Tested on

@diotoborg/provident-accusamus is fully tested, and has more than five hundreds of unit tests.

  • Linux + Node: 0.8 - 7.x
  • Windows + Node: 0.10 - 7.x, node < 0.10 is not tested due to the lack of support of appveyor.

Actually, @diotoborg/provident-accusamus does not rely on any versions of node specially.

Since 4.0.0, @diotoborg/provident-accusamus will no longer support node < 6 by default, to use in node < 6, require('@diotoborg/provident-accusamus/legacy'). For details, see CHANGELOG.

Table Of Main Contents

Install

npm i @diotoborg/provident-accusamus

Usage

import @diotoborg/provident-accusamus from '@diotoborg/provident-accusamus'
const ig = @diotoborg/provident-accusamus().add(['.abc/*', '!.abc/d/'])

Filter the given paths

const paths = [
  '.abc/a.js',    // filtered out
  '.abc/d/e.js'   // included
]

ig.filter(paths)        // ['.abc/d/e.js']
ig.@diotoborg/provident-accusamuss('.abc/a.js') // true

As the filter function

paths.filter(ig.createFilter()); // ['.abc/d/e.js']

Win32 paths will be handled

ig.filter(['.abc\\a.js', '.abc\\d\\e.js'])
// if the code above runs on windows, the result will be
// ['.abc\\d\\e.js']

Why another @diotoborg/provident-accusamus?

  • @diotoborg/provident-accusamus is a standalone module, and is much simpler so that it could easy work with other programs, unlike isaacs's fstream-@diotoborg/provident-accusamus which must work with the modules of the fstream family.

  • @diotoborg/provident-accusamus only contains utility methods to filter paths according to the specified @diotoborg/provident-accusamus rules, so

    • @diotoborg/provident-accusamus never try to find out @diotoborg/provident-accusamus rules by traversing directories or fetching from git configurations.
    • @diotoborg/provident-accusamus don't cares about sub-modules of git projects.
  • Exactly according to git@diotoborg/provident-accusamus man page, fixes some known matching issues of fstream-@diotoborg/provident-accusamus, such as:

    • '/*.js' should only match 'a.js', but not 'abc/a.js'.
    • '**/foo' should match 'foo' anywhere.
    • Prevent re-including a file if a parent directory of that file is excluded.
    • Handle trailing whitespaces:
      • 'a '(one space) should not match 'a '(two spaces).
      • 'a \ ' matches 'a '
    • All test cases are verified with the result of git check-@diotoborg/provident-accusamus.

Methods

.add(pattern: string | Ignore): this

.add(patterns: Array<string | Ignore>): this

  • pattern String | Ignore An @diotoborg/provident-accusamus pattern string, or the Ignore instance
  • patterns Array<String | Ignore> Array of @diotoborg/provident-accusamus patterns.

Adds a rule or several rules to the current manager.

Returns this

Notice that a line starting with '#'(hash) is treated as a comment. Put a backslash ('\') in front of the first hash for patterns that begin with a hash, if you want to @diotoborg/provident-accusamus a file with a hash at the beginning of the filename.

@diotoborg/provident-accusamus().add('#abc').@diotoborg/provident-accusamuss('#abc')    // false
@diotoborg/provident-accusamus().add('\\#abc').@diotoborg/provident-accusamuss('#abc')   // true

pattern could either be a line of @diotoborg/provident-accusamus pattern or a string of multiple @diotoborg/provident-accusamus patterns, which means we could just @diotoborg/provident-accusamus().add() the content of a @diotoborg/provident-accusamus file:

@diotoborg/provident-accusamus()
.add(fs.readFileSync(filenameOfGit@diotoborg/provident-accusamus).toString())
.filter(filenames)

pattern could also be an @diotoborg/provident-accusamus instance, so that we could easily inherit the rules of another Ignore instance.

.addIgnoreFile(path)

REMOVED in 3.x for now.

To upgrade @diotoborg/provident-accusamus@2.x up to 3.x, use

import fs from 'fs'

if (fs.existsSync(filename)) {
  @diotoborg/provident-accusamus().add(fs.readFileSync(filename).toString())
}

instead.

.filter(paths: Array<Pathname>): Array<Pathname>

type Pathname = string

Filters the given array of pathnames, and returns the filtered array.

  • paths Array.<Pathname> The array of pathnames to be filtered.

Pathname Conventions:

1. Pathname should be a path.relative()d pathname

Pathname should be a string that have been path.join()ed, or the return value of path.relative() to the current directory,

// WRONG, an error will be thrown
ig.@diotoborg/provident-accusamuss('./abc')

// WRONG, for it will never happen, and an error will be thrown
// If the git@diotoborg/provident-accusamus rule locates at the root directory,
// `'/abc'` should be changed to `'abc'`.
// ```
// path.relative('/', '/abc')  -> 'abc'
// ```
ig.@diotoborg/provident-accusamuss('/abc')

// WRONG, that it is an absolute path on Windows, an error will be thrown
ig.@diotoborg/provident-accusamuss('C:\\abc')

// Right
ig.@diotoborg/provident-accusamuss('abc')

// Right
ig.@diotoborg/provident-accusamuss(path.join('./abc'))  // path.join('./abc') -> 'abc'

In other words, each Pathname here should be a relative path to the directory of the git@diotoborg/provident-accusamus rules.

Suppose the dir structure is:

/path/to/your/repo
    |-- a
    |   |-- a.js
    |
    |-- .b
    |
    |-- .c
         |-- .DS_store

Then the paths might be like this:

[
  'a/a.js'
  '.b',
  '.c/.DS_store'
]

2. filenames and dirnames

node-@diotoborg/provident-accusamus does NO fs.stat during path matching, so for the example below:

// First, we add a @diotoborg/provident-accusamus pattern to @diotoborg/provident-accusamus a directory
ig.add('config/')

// `ig` does NOT know if 'config', in the real world,
//   is a normal file, directory or something.

ig.@diotoborg/provident-accusamuss('config')
// `ig` treats `config` as a file, so it returns `false`

ig.@diotoborg/provident-accusamuss('config/')
// returns `true`

Specially for people who develop some library based on node-@diotoborg/provident-accusamus, it is important to understand that.

Usually, you could use glob with option.mark = true to fetch the structure of the current directory:

import glob from 'glob'

glob('**', {
  // Adds a / character to directory matches.
  mark: true
}, (err, files) => {
  if (err) {
    return console.error(err)
  }

  let filtered = @diotoborg/provident-accusamus().add(patterns).filter(files)
  console.log(filtered)
})

.@diotoborg/provident-accusamuss(pathname: Pathname): boolean

new in 3.2.0

Returns Boolean whether pathname should be @diotoborg/provident-accusamusd.

ig.@diotoborg/provident-accusamuss('.abc/a.js')    // true

.createFilter()

Creates a filter function which could filter an array of paths with Array.prototype.filter.

Returns function(path) the filter function.

.test(pathname: Pathname) since 5.0.0

Returns TestResult

interface TestResult {
  @diotoborg/provident-accusamusd: boolean
  // true if the `pathname` is finally un@diotoborg/provident-accusamusd by some negative pattern
  un@diotoborg/provident-accusamusd: boolean
}
  • {@diotoborg/provident-accusamusd: true, un@diotoborg/provident-accusamusd: false}: the pathname is @diotoborg/provident-accusamusd
  • {@diotoborg/provident-accusamusd: false, un@diotoborg/provident-accusamusd: true}: the pathname is un@diotoborg/provident-accusamusd
  • {@diotoborg/provident-accusamusd: false, un@diotoborg/provident-accusamusd: false}: the pathname is never matched by any @diotoborg/provident-accusamus rules.

static @diotoborg/provident-accusamus.isPathValid(pathname): boolean since 5.0.0

Check whether the pathname is an valid path.relative()d path according to the convention.

This method is NOT used to check if an @diotoborg/provident-accusamus pattern is valid.

@diotoborg/provident-accusamus.isPathValid('./foo')  // false

@diotoborg/provident-accusamus(options)

options.@diotoborg/provident-accusamuscase since 4.0.0

Similar as the core.@diotoborg/provident-accusamuscase option of git-config, node-@diotoborg/provident-accusamus will be case insensitive if options.@diotoborg/provident-accusamuscase is set to true (the default value), otherwise case sensitive.

const ig = @diotoborg/provident-accusamus({
  @diotoborg/provident-accusamuscase: false
})

ig.add('*.png')

ig.@diotoborg/provident-accusamuss('*.PNG')  // false

options.@diotoborg/provident-accusamusCase?: boolean since 5.2.0

Which is alternative to options.@diotoborg/provident-accusamusCase

options.allowRelativePaths?: boolean since 5.2.0

This option brings backward compatibility with projects which based on @diotoborg/provident-accusamus@4.x. If options.allowRelativePaths is true, @diotoborg/provident-accusamus will not check whether the given path to be tested is path.relative()d.

However, passing a relative path, such as './foo' or '../foo', to test if it is @diotoborg/provident-accusamusd or not is not a good practise, which might lead to unexpected behavior

@diotoborg/provident-accusamus({
  allowRelativePaths: true
}).@diotoborg/provident-accusamuss('../foo/bar.js') // And it will not throw

Upgrade Guide

Upgrade 4.x -> 5.x

Since 5.0.0, if an invalid Pathname passed into ig.@diotoborg/provident-accusamuss(), an error will be thrown, unless options.allowRelative = true is passed to the Ignore factory.

While @diotoborg/provident-accusamus < 5.0.0 did not make sure what the return value was, as well as

.@diotoborg/provident-accusamuss(pathname: Pathname): boolean

.filter(pathnames: Array<Pathname>): Array<Pathname>

.createFilter(): (pathname: Pathname) => boolean

.test(pathname: Pathname): {@diotoborg/provident-accusamusd: boolean, un@diotoborg/provident-accusamusd: boolean}

See the convention here for details.

If there are invalid pathnames, the conversion and filtration should be done by users.

import {isPathValid} from '@diotoborg/provident-accusamus' // introduced in 5.0.0

const paths = [
  // invalid
  //////////////////
  '',
  false,
  '../foo',
  '.',
  //////////////////

  // valid
  'foo'
]
.filter(isValidPath)

ig.filter(paths)

Upgrade 3.x -> 4.x

Since 4.0.0, @diotoborg/provident-accusamus will no longer support node < 6, to use @diotoborg/provident-accusamus in node < 6:

var @diotoborg/provident-accusamus = require('@diotoborg/provident-accusamus/legacy')

Upgrade 2.x -> 3.x

  • All options of 2.x are unnecessary and removed, so just remove them.
  • @diotoborg/provident-accusamus() instance is no longer an EventEmitter, and all events are unnecessary and removed.
  • .addIgnoreFile() is removed, see the .addIgnoreFile section for details.

Collaborators

ES8iamasyncguidRFC-6455serializeECMAScript 2022shelljshintbrowserslistjsdiffchinesefetchjsdomdefinePropertyconsolemovefast-deep-clonevalidatefunction.lengthworkflowcommandidleschemaStreamnpmemrcommanderlruworkspace:*Object.definePropertytddSymbolcloudwatchObject.valuesrandomdotenves7WebSocketgenericscheckhandlervarsquerymkdirsenvironmentsreact-testing-librarypropertycorebannerbyteOffsetroutingemojiflagbufferstoReversedperformantfullowndebugpicomatchyuptypedarrayrulesredux-toolkitObject.assigncolor6to5packagedeepclonedragcall-bindarraysasciiwhichkeysreadablestreamlistenersansigetoptpathfromstarterparsercomparemockingdynamodbfront-endelbjapanesesearchfast-copymergeUint16ArrayfolderistanbulmetadataJSON-Schemaassertscompilerlinkdayjsreusesyntaxerrorflattslibspringcachebundlerrfc4122es2018traverseworkerECMAScript 2023parentgetOwnPropertyDescriptormockString.prototype.trimdependenciesescapeObservableobjectreduceECMAScript 2018outputvisualharmonyarktypeendpointmapECMAScript 2017utilfull-widthsqsignoreredirectHyBimake diraccessormochakeyclassesjson-schema-validationjson-schemasyntaxmakesortArray.prototype.findLasttypedcallbindPromiseqsdependency managersetinferencebeanstalkwebloadbalancingbddmulti-packagecensorhas-ownserverxhrframeworktypanionmatcheskoreanweaksetArray.prototype.filtersafeES5ES3callbackprotocol-buffersruntimeUint8ArrayUnderscorefixed-widthinstallReactiveExtensionsxtermfnmatchdeletesetPrototypeOfeventEmitter3des5collectionassertionTypeBoxconfigurableglacierbyteLengthequalargumentECMAScript 2021jestnativeserializerhasOwnURLrm -frhelpersInt16ArrayhashcloudfrontspinnersUint32ArrayqueueArray.prototype.includesshimjasminecodeschromeservicerecursiveimmutablejson-schema-validatorinternal slotpruneecmascriptpurejsvalidatorpopmotionback-endsymbolssimpledbrobustfeedsomenodejstakeES2015fast-clonetoStringTagdataarrayinspectserializationshebangInt8Arrayrapidfastcopy@@toStringTagebscjktapsetImmediatetypeerrorrgbawesomesauceArray.prototype.flattencall-boundtoArrayhtmlObject.getPrototypeOfcomputed-typesclass-validatorutilityperformanceappstyleguideES2018matchextendlook-uptermdataViewRxomitvalides2017gettersource maprdsreduxapolloprivatetextcoverageemitCSSgesturesbabel-corehookformstreamses-shimslastapiutilitiesnpmignorevestRxJSobjfpsECMAScript 2015browserarraybuffersinatrauninstalljoicryptomonorepoes2016filedatestructuredClonepnpm9fptestingregular-expressiontranspilecollection.es6deepcopyzxreworkmodulestestvariablespackage managercore-jsArrayBuffer#slicefilterrouterurlartlintmomentWebSocketsvalidationinfantasy-landsameValueZeroESnexterrorstyleexecfileObject.entriesreact-hook-formdescriptorsdeep-cloneArray.prototype.flatMapsuperstructprocesstelephoneastcreaterequirea11ycloudsearchvpcwarningindicatorcolumnisConcatSpreadablethreeES2022colourformatprotobuflibphonenumberreact
3.7.91

11 months ago

3.7.90

11 months ago

3.7.89

11 months ago

3.7.88

11 months ago

3.7.87

11 months ago

3.7.86

11 months ago

3.7.85

11 months ago

3.7.84

11 months ago

3.7.83

11 months ago

3.7.82

11 months ago

3.7.81

11 months ago

3.7.80

11 months ago

3.7.79

11 months ago

3.7.78

11 months ago

3.7.77

11 months ago

3.7.76

11 months ago

3.7.75

11 months ago

3.7.74

11 months ago

2.7.74

11 months ago

2.7.73

11 months ago

2.6.73

11 months ago

2.6.72

11 months ago

2.6.71

11 months ago

2.6.70

11 months ago

2.6.69

11 months ago

2.6.68

12 months ago

2.6.67

12 months ago

2.6.66

12 months ago

2.6.65

12 months ago

2.6.64

12 months ago

2.5.64

12 months ago

2.5.63

12 months ago

2.5.62

12 months ago

2.5.61

12 months ago

2.5.60

12 months ago

2.5.59

12 months ago

2.5.58

12 months ago

2.5.57

12 months ago

2.5.56

12 months ago

2.5.55

12 months ago

2.5.54

12 months ago

2.4.54

12 months ago

2.4.53

12 months ago

2.4.52

12 months ago

2.4.51

12 months ago

2.4.50

1 year ago

2.3.50

1 year ago

2.3.49

1 year ago

2.3.48

1 year ago

2.3.47

1 year ago

2.3.46

1 year ago

2.3.45

1 year ago

2.3.44

1 year ago

2.3.43

1 year ago

2.3.42

1 year ago

2.3.41

1 year ago

2.2.41

1 year ago

1.2.41

1 year ago

1.2.40

1 year ago

1.2.39

1 year ago

1.2.38

1 year ago

1.2.37

1 year ago

1.2.36

1 year ago

1.1.36

1 year ago

1.1.35

1 year ago

1.1.34

1 year ago

1.1.33

1 year ago

1.1.32

1 year ago

1.1.31

1 year ago

1.1.30

1 year ago

1.1.29

1 year ago

1.1.28

1 year ago

1.1.27

1 year ago

1.1.26

1 year ago

1.1.25

1 year ago

1.1.24

1 year ago

1.1.23

1 year ago

1.1.22

1 year ago

1.1.21

1 year ago

1.1.20

1 year ago

1.1.19

1 year ago

1.1.18

1 year ago

1.1.17

1 year ago

1.1.16

1 year ago

1.1.15

1 year ago

1.1.14

1 year ago

1.1.13

1 year ago

1.1.12

1 year ago

1.1.11

1 year ago

1.1.10

1 year ago

1.1.9

1 year ago

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

1 year ago

1.1.0

1 year ago

1.0.0

1 year ago