SourceTermAnalysisSystem_vue/eslint.config.js

17 lines
239 B
JavaScript
Raw Normal View History

2026-05-15 10:13:06 +08:00
import antfu from '@antfu/eslint-config';
export default antfu({
formatters: true,
stylistic: {
semi: true,
},
rules: {
'no-console': [0],
},
languageOptions: {
globals: {
Cesium: 'readonly',
},
},
});