1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- module.exports = {
- extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:jest/recommended', 'prettier'],
- env: {
- node: true,
- es6: true,
- jest: true,
- },
- parser: '@typescript-eslint/parser',
- plugins: ['@typescript-eslint', 'jest'],
- rules: {
- '@typescript-eslint/explicit-module-boundary-types': 'off',
- '@typescript-eslint/no-non-null-assertion': 'off',
- '@typescript-eslint/naming-convention': [
- 'error',
- {
- selector: 'default',
- format: ['camelCase'],
- },
- {
- selector: 'variable',
- format: ['camelCase', 'UPPER_CASE', 'PascalCase'],
- },
- {
- selector: 'property',
- format: [], // Don't force format of object properties, so they can be ie.: { "Some thing": 123 }, { some_thing: 123 } etc.
- },
- {
- selector: 'accessor',
- format: ['camelCase', 'snake_case'],
- },
- {
- selector: 'enumMember',
- format: null,
- },
- {
- selector: 'typeLike',
- format: [],
- custom: { regex: '^([A-Z][a-z0-9]*_?)+', match: true }, // combined PascalCase and snake_case to allow ie. OpeningType_Worker
- },
- {
- selector: 'classMethod',
- modifiers: ['static'],
- format: ['PascalCase'],
- },
- ],
- },
- }
|