mirror of
https://github.com/billsonnn/nitro-renderer.git
synced 2024-11-22 23:50:52 +01:00
156 lines
4.2 KiB
JavaScript
156 lines
4.2 KiB
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import path from 'path';
|
|
import tseslint from 'typescript-eslint';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommendedTypeChecked,
|
|
{
|
|
languageOptions: {
|
|
parserOptions: {
|
|
project: ['./tsconfig.json','./packages/*/tsconfig.json'],
|
|
tsconfigRootDir: __dirname,
|
|
},
|
|
},
|
|
rules: {
|
|
'indent': [
|
|
'error',
|
|
4,
|
|
{
|
|
'SwitchCase': 1
|
|
}
|
|
],
|
|
'no-multi-spaces': [
|
|
'error'
|
|
],
|
|
'no-trailing-spaces': [
|
|
'error',
|
|
{
|
|
'skipBlankLines': false,
|
|
'ignoreComments': true
|
|
}
|
|
],
|
|
'linebreak-style': [
|
|
'off'
|
|
],
|
|
'quotes': [
|
|
'error',
|
|
'single'
|
|
],
|
|
'semi': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'brace-style': [
|
|
'error',
|
|
'allman'
|
|
],
|
|
'object-curly-spacing': [
|
|
'error',
|
|
'always'
|
|
],
|
|
'keyword-spacing': [
|
|
'error',
|
|
{
|
|
'overrides':
|
|
{
|
|
'if':
|
|
{
|
|
'after': false
|
|
},
|
|
'for':
|
|
{
|
|
'after': false
|
|
},
|
|
'while':
|
|
{
|
|
'after': false
|
|
},
|
|
'switch':
|
|
{
|
|
'after': false
|
|
}
|
|
}
|
|
}
|
|
],
|
|
'@typescript-eslint/no-explicit-any': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-unsafe-assignment': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-unsafe-call': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-unsafe-member-access': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-floating-promises': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/require-await': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-unsafe-argument': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-unsafe-return': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/explicit-module-boundary-types': [
|
|
'off',
|
|
{
|
|
'allowedNames': [
|
|
'getMessageArray'
|
|
]
|
|
}
|
|
],
|
|
'@typescript-eslint/unbound-method': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/ban-ts-comment': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/no-empty-function': [
|
|
'error',
|
|
{
|
|
'allow': [
|
|
'functions',
|
|
'arrowFunctions',
|
|
'generatorFunctions',
|
|
'methods',
|
|
'generatorMethods',
|
|
'constructors'
|
|
]
|
|
}
|
|
],
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'off'
|
|
],
|
|
'@typescript-eslint/ban-types': [
|
|
'error',
|
|
{
|
|
'types':
|
|
{
|
|
'String': true,
|
|
'Boolean': true,
|
|
'Number': true,
|
|
'Symbol': true,
|
|
'{}': false,
|
|
'Object': false,
|
|
'object': false,
|
|
'Function': false
|
|
},
|
|
'extendDefaults': true
|
|
}
|
|
]
|
|
}
|
|
},
|
|
);
|