14 lines
538 B
Text
14 lines
538 B
Text
# Copyright (c) 2016-present Sven Greb <development@svengreb.de>
|
|
# This source code is licensed under the MIT license found in the license file.
|
|
|
|
# Path match pattern to ignore (i.e. not lint) certain files and folders.
|
|
# References:
|
|
# 1. https://eslint.org/docs/latest/use/configure/ignore
|
|
|
|
node_modules/
|
|
|
|
# Explicitly include specific "dotfiles".
|
|
# ESLint automatically applies ignore pattern for "dotfiles" by default to prevent accidentally lint over paths like
|
|
# `.git` or any other critical paths.
|
|
!**/.eslintrc.js
|
|
!.remarkrc.mjs
|