forked from sheetjs/sheetjs
SheetJS
b9bc0a1627
- dateNF parse option controls interpretation of code 14 - SSF updated to 0.9.1 - SYLK write formulae - DIF support Excel-style data storage - ODS/FODS automatic styles for date formatting Issues: - Fixes #181 h/t @CharlesNo - Fixes #200 h/t @JohnJeong123 - Fixes #208 h/t @jerryhe88 - Fixes #262 h/t @JohnJeong123 - Fixes #269 h/t @calebeaires - Fixes #326 h/t @railty - Fixes #392 h/t @FourLeafClover - Fixes #449 h/t @dougschiller - Fixes #560 h/t @dpackage
20 lines
398 B
Plaintext
20 lines
398 B
Plaintext
{
|
|
"env": { "shared-node-browser":true },
|
|
"globals": {},
|
|
"parserOptions": {
|
|
"ecmaVersion": 3,
|
|
},
|
|
"plugins": [ "html", "json" ],
|
|
"rules": {
|
|
"no-use-before-define": [ 1, {
|
|
"functions":false, "classes":true, "variables":false
|
|
}],
|
|
"no-bitwise": 0,
|
|
"curly": 0,
|
|
"comma-style": [ 2, "last" ],
|
|
"no-trailing-spaces": 2,
|
|
"semi": [ 2, "always" ],
|
|
"comma-dangle": [ 2, "never" ]
|
|
}
|
|
}
|