mirror of
https://github.com/stackblitz/bolt.new
synced 2024-11-27 14:32:46 +00:00
29 lines
637 B
JavaScript
29 lines
637 B
JavaScript
import blitzPlugin from '@blitz/eslint-plugin';
|
|
import { getNamingConventionRule } from '@blitz/eslint-plugin/dist/configs/typescript.js';
|
|
|
|
export default [
|
|
{
|
|
ignores: ['**/dist', '**/node_modules'],
|
|
},
|
|
...blitzPlugin.configs.recommended(),
|
|
{
|
|
rules: {
|
|
'@blitz/catch-error-name': 'off',
|
|
'@typescript-eslint/no-this-alias': 'off',
|
|
'@typescript-eslint/no-empty-object-type': 'off',
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.tsx'],
|
|
rules: {
|
|
...getNamingConventionRule({}, true),
|
|
},
|
|
},
|
|
{
|
|
files: ['**/*.d.ts'],
|
|
rules: {
|
|
'@typescript-eslint/no-empty-object-type': 'off',
|
|
},
|
|
},
|
|
];
|