7f1d3ebc07
- move all test files from core/test to test/ - updated all imports and other references - all code inside of core/ is then application code - tests are correctly at the root level - consistent with other repos/projects Co-authored-by: Kevin Ansfield <kevin@lookingsideways.co.uk>
25 lines
498 B
Plaintext
25 lines
498 B
Plaintext
{
|
|
"node": true,
|
|
"browser": true,
|
|
"strict": false,
|
|
"sub": true,
|
|
"eqeqeq": true,
|
|
"laxbreak": true,
|
|
"bitwise": true,
|
|
"curly": true,
|
|
"forin": true,
|
|
"immed": true,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": true,
|
|
"plusplus": true,
|
|
"regexp": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
"indent": 4,
|
|
"quotmark": "single",
|
|
"predef": [ "-Promise" ]
|
|
}
|