- Project detection: detectProjectKind (node/python/rust/unknown) - Scaffolder: writes ESLint/Biome/pre-commit configs based on profile - Embedded templates for strict/standard/minimal profiles - CLI: quality-rails init | check | doctor - Depends on @mosaic/types workspace:*
21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
import tsEslintPlugin from '@typescript-eslint/eslint-plugin';
|
|
import tsEslintParser from '@typescript-eslint/parser';
|
|
|
|
export default [
|
|
{
|
|
files: ['src/**/*.ts'],
|
|
languageOptions: {
|
|
parser: tsEslintParser,
|
|
sourceType: 'module',
|
|
ecmaVersion: 'latest',
|
|
},
|
|
plugins: {
|
|
'@typescript-eslint': tsEslintPlugin,
|
|
},
|
|
rules: {
|
|
'no-console': 'off',
|
|
'@typescript-eslint/no-explicit-any': 'off',
|
|
},
|
|
},
|
|
];
|