mirror of
https://github.com/zoriya/yoshiki.git
synced 2025-12-05 22:56:14 +00:00
24 lines
490 B
JSON
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"
|
|
}
|
|
}
|