mirror of
https://github.com/valitydev/ng-libs.git
synced 2024-11-06 08:45:27 +00:00
122 lines
4.1 KiB
JavaScript
122 lines
4.1 KiB
JavaScript
module.exports = {
|
|
root: true,
|
|
globals: {},
|
|
ignorePatterns: [
|
|
'**/*.json',
|
|
'**/*.md',
|
|
'**/*.?css',
|
|
'**/*.js',
|
|
'**/*.conf',
|
|
'**/*.ico',
|
|
'Dockerfile',
|
|
'dist',
|
|
],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: ['tsconfig.json'],
|
|
createDefaultProgram: true,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['*.ts'],
|
|
plugins: ['unused-imports'],
|
|
extends: [
|
|
'eslint:recommended',
|
|
'plugin:import/recommended',
|
|
'plugin:@typescript-eslint/recommended',
|
|
'plugin:import/typescript',
|
|
'prettier',
|
|
],
|
|
rules: {
|
|
'no-console': ['error', { allow: ['warn', 'error'] }],
|
|
'@typescript-eslint/member-ordering': [
|
|
'error',
|
|
{
|
|
default: [
|
|
'signature',
|
|
|
|
'public-field',
|
|
'protected-field',
|
|
'private-field',
|
|
|
|
'constructor',
|
|
|
|
'public-method',
|
|
'protected-method',
|
|
'private-method',
|
|
],
|
|
},
|
|
],
|
|
'@typescript-eslint/naming-convention': [
|
|
'error',
|
|
{
|
|
selector: 'default',
|
|
format: ['camelCase'],
|
|
leadingUnderscore: 'allow',
|
|
},
|
|
{
|
|
selector: 'default',
|
|
modifiers: ['destructured'],
|
|
format: null,
|
|
},
|
|
{
|
|
selector: 'typeLike',
|
|
format: ['PascalCase'],
|
|
},
|
|
{
|
|
selector: 'variable',
|
|
modifiers: ['const', 'global'],
|
|
format: ['UPPER_CASE'],
|
|
},
|
|
{
|
|
selector: 'variable',
|
|
modifiers: ['const', 'global'],
|
|
// Objects are functions too
|
|
types: ['function'],
|
|
format: ['UPPER_CASE', 'camelCase'],
|
|
},
|
|
{
|
|
selector: 'enumMember',
|
|
format: ['PascalCase'],
|
|
},
|
|
{
|
|
selector: ['objectLiteralProperty', 'typeProperty'],
|
|
format: ['camelCase', 'snake_case'],
|
|
leadingUnderscore: 'allow',
|
|
trailingUnderscore: 'allow',
|
|
},
|
|
{
|
|
selector: [
|
|
'classProperty',
|
|
'objectLiteralProperty',
|
|
'typeProperty',
|
|
'classMethod',
|
|
'objectLiteralMethod',
|
|
'typeMethod',
|
|
'accessor',
|
|
'enumMember',
|
|
],
|
|
modifiers: ['requiresQuotes'],
|
|
format: null,
|
|
},
|
|
],
|
|
'import/no-unresolved': 'off',
|
|
'@typescript-eslint/no-unused-vars': 'off',
|
|
'unused-imports/no-unused-imports': 'error',
|
|
'unused-imports/no-unused-vars': [
|
|
'error',
|
|
{
|
|
vars: 'all',
|
|
varsIgnorePattern: '^_',
|
|
args: 'after-used',
|
|
argsIgnorePattern: '^_',
|
|
},
|
|
],
|
|
'@typescript-eslint/no-inferrable-types': 'off',
|
|
'import/namespace': 'off',
|
|
},
|
|
},
|
|
...require('./configs/import-order')().overrides,
|
|
],
|
|
};
|