touhou-tagger
Version:
从 THBWiki 自动填写东方 Project CD 曲目信息.
25 lines (24 loc) • 501 B
JavaScript
module.exports = {
extends: ['@the1812/eslint-config'],
rules: {
'class-methods-use-this': 'off',
},
overrides: [
{
files: ['*-mappings.ts'],
rules: {
'@typescript-eslint/naming-convention': [
'error',
{
selector: 'property',
format: ['strictCamelCase', 'StrictPascalCase'],
filter: {
regex: '[-/]|^[.]',
match: false,
},
},
],
},
},
],
}