
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
eslint-config-flat-gitignore
Advanced tools
.gitignore support for ESLint Flat Config.
npm i -D eslint-config-flat-gitignore
// eslint.config.js
import gitignore from 'eslint-config-flat-gitignore'
export default [
// recommended putting it at the first
gitignore(),
// your other configs here
]
By default it will only looks for .gitignore but NOT .eslintignore, as we would recommended move away from .eslintignore to declare directly in eslint.config.js for single source of truth. If you still want it, you can pass the files option to specify the files to look for.
gitignore({
files: [
'.gitignore',
'.eslintignore',
]
})
By default, this plugin throws if any of the ignore files are missing. This can be disabled by passing setting the strict option to false.
gitignore({
files: [
'.gitignore',
'.eslintignore',
],
strict: false,
})
By default, this plugin will try to look up the directory tree and match the first .gitignore file. You can disable this by setting the root option to true, or specify the files option to a specific path.
gitignore({
root: true
})
If you want to include recursive .gitignore files (for example in monorepos), enable the recursive option.
gitignore({
recursive: true,
})
If you want recursive discovery but need to skip specific directory names, pass an object to recursive with skipDirs.
gitignore({
recursive: {
// Skip any directory with this name at any depth
skipDirs: ['dist', 'coverage'],
},
})
skipDirs matches directory names (not paths) and applies in addition to the built-in skipped directories: .git and node_modules.
This plugin will also automatically detect git submodule file .gitmodules and ignore all files under the submodule dirs. If you want to disable or customize this behavior, you can pass the filesGitModules option.
gitignore({
filesGitModules: [], // disable
filesGitModules: ['path/to/.gitmodules'], // customize
})
MIT License © 2023-PRESENT Anthony Fu
FAQs
.gitignore support for ESLint Flat Config
The npm package eslint-config-flat-gitignore receives a total of 854,957 weekly downloads. As such, eslint-config-flat-gitignore popularity was classified as popular.
We found that eslint-config-flat-gitignore demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.