mirror of
https://github.com/xibyte/jsketcher
synced 2025-12-15 21:05:22 +01:00
26 lines
446 B
JSON
26 lines
446 B
JSON
{
|
|
"extends": "eslint:recommended",
|
|
"env": {
|
|
"browser": true,
|
|
"commonjs": true,
|
|
"es6": true
|
|
},
|
|
"parser": "babel-eslint",
|
|
"plugins": [
|
|
"babel"
|
|
],
|
|
"globals" : {
|
|
"THREE" : true,
|
|
"CSG" : true,
|
|
"PNLTRI" : true,
|
|
"__DEBUG__": true,
|
|
"$": true
|
|
},
|
|
"rules": {
|
|
"comma-dangle": "off",
|
|
"no-unused-vars": "off",
|
|
"max-len": "off",
|
|
"no-console": "off",
|
|
"no-extra-boolean-cast": "off"
|
|
}
|
|
}
|