17 lines
239 B
JavaScript
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',
|
|
},
|
|
},
|
|
});
|