forked from sheetjs/sheetjs
SheetJS
09fba37eac
- eslint pass (eliminates jshint and jscs) - moved cell reference functions to reduce forward references - themeXLSX override XLSX/XLSB/XLSM theme
19 lines
369 B
Plaintext
19 lines
369 B
Plaintext
{
|
|
"env": { "shared-node-browser":true },
|
|
"globals": {},
|
|
"parserOptions": {
|
|
"ecmaVersion": 3,
|
|
},
|
|
"plugins": [ "html", "json" ],
|
|
"rules": {
|
|
"no-use-before-define": [ 1, {
|
|
"functions":true, "classes":true, "variables":true
|
|
}],
|
|
"no-bitwise": 0,
|
|
"curly": 0,
|
|
"comma-style": [ 2, "last" ],
|
|
"no-trailing-spaces": 2,
|
|
"comma-dangle": [ 2, "never" ]
|
|
}
|
|
}
|