Files
yoshiki/.eslintrc.json
2022-11-16 00:04:02 +09:00

24 lines
490 B
JSON

{
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended", "prettier"],
"plugins": ["header"],
"settings": {
"next": {
"rootDir": "examples/next-example/"
}
},
"rules": {
"header/header": [
"error",
"line",
[
"",
" Copyright (c) Zoe Roux and contributors. All rights reserved.",
" Licensed under the MIT license. See LICENSE file in the project root for details.",
""
],
1
],
"@typescript-eslint/ban-ts-ignore": "off"
}
}