mirror of
https://github.com/netfun2000/ip2region.git
synced 2026-02-27 09:44:31 +08:00
18 lines
224 B
JavaScript
18 lines
224 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es2021: true
|
|
},
|
|
parserOptions: {
|
|
ecmaVersion: 'latest'
|
|
},
|
|
extends: [
|
|
'standard'
|
|
],
|
|
globals: {
|
|
describe: true,
|
|
it: true
|
|
}
|
|
}
|