forked from sheetjs/sheetjs
SheetJS
dcee744e4e
- XLSX/XLSB/XLS/XLML/SYLK rows and columns - corrected pixel/point calculations using PPI - XLSX/XLSB generate sheet view - clarified sheet protection default behavior - fixed eslintrc semi check
20 lines
396 B
Plaintext
20 lines
396 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,
|
|
"semi": [ 2, "always" ],
|
|
"comma-dangle": [ 2, "never" ]
|
|
}
|
|
}
|