| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- module.exports = {
- extends: [
- 'weseek/react',
- 'weseek/typescript',
- ],
- plugins: [
- 'regex',
- ],
- env: {
- jquery: true,
- },
- globals: {
- $: true,
- jquery: true,
- emojione: true,
- hljs: true,
- ScrollPosStyler: true,
- window: true,
- },
- settings: {
- // resolve path aliases by eslint-import-resolver-typescript
- 'import/resolver': {
- typescript: {},
- },
- },
- rules: {
- 'no-restricted-imports': ['error', {
- name: 'axios',
- message: 'Please use src/utils/axios instead.',
- }],
- 'regex/invalid': ['error', [
- {
- regex: '\\?\\<\\!',
- message: 'Do not use any negative lookbehind',
- }, {
- regex: '\\?\\<\\=',
- message: 'Do not use any Positive lookbehind',
- },
- ]],
- '@typescript-eslint/no-var-requires': 'off',
- // set 'warn' temporarily -- 2021.08.02 Yuki Takei
- '@typescript-eslint/explicit-module-boundary-types': ['warn'],
- '@typescript-eslint/no-use-before-define': ['warn'],
- '@typescript-eslint/no-this-alias': ['warn'],
- 'jest/no-done-callback': ['warn'],
- },
- };
|