eslint-config-blazex
Version:
🔥 Blazex 🔥 eslint config that can be used across projects
20 lines (18 loc) • 385 B
JavaScript
import react from './react.mjs';
import typescript, { typescriptLanguageOptions } from './typescript.mjs';
export default {
...react,
languageOptions: {
...react.languageOptions,
...typescriptLanguageOptions,
},
plugins: {
...react.plugins,
...typescript.plugins,
},
files: typescript.files,
rules: {
...react.rules,
...typescript.rules,
},
};