SourceTermAnalysisSystem_vue/eslint.config.js
2026-05-15 10:13:06 +08:00

17 lines
239 B
JavaScript

import antfu from '@antfu/eslint-config';
export default antfu({
formatters: true,
stylistic: {
semi: true,
},
rules: {
'no-console': [0],
},
languageOptions: {
globals: {
Cesium: 'readonly',
},
},
});