mirror of
https://github.com/lionsoul2014/ip2region.git
synced 2025-12-08 19:25:22 +00: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
|
|
}
|
|
}
|