├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .mailmap ├── .prettierignore ├── .prettierrc.js ├── .travis.yml ├── Gruntfile.js ├── LICENSE ├── README.md ├── appveyor.yml ├── lib └── gitignore-to-glob.js ├── package.json └── test ├── .eslintrc.json ├── fixtures ├── gitignore-comment ├── gitignore-dirs ├── gitignore-emptyline ├── gitignore-ignore ├── gitignore-noslash └── gitignore-slash └── spec.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/** 2 | test/*/**/*.js 3 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/.mailmap -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/appveyor.yml -------------------------------------------------------------------------------- /lib/gitignore-to-glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/lib/gitignore-to-glob.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/fixtures/gitignore-comment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/test/fixtures/gitignore-comment -------------------------------------------------------------------------------- /test/fixtures/gitignore-dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/test/fixtures/gitignore-dirs -------------------------------------------------------------------------------- /test/fixtures/gitignore-emptyline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/test/fixtures/gitignore-emptyline -------------------------------------------------------------------------------- /test/fixtures/gitignore-ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/test/fixtures/gitignore-ignore -------------------------------------------------------------------------------- /test/fixtures/gitignore-noslash: -------------------------------------------------------------------------------- 1 | pattern 2 | -------------------------------------------------------------------------------- /test/fixtures/gitignore-slash: -------------------------------------------------------------------------------- 1 | /pattern 2 | -------------------------------------------------------------------------------- /test/spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EE/gitignore-to-glob/HEAD/test/spec.js --------------------------------------------------------------------------------