textract
Version:
Extracting text from files of various type including html, pdf, doc, docx, xls, xlsx, csv, pptx, png, jpg, gif, rtf, text/*, and various open office.
28 lines (26 loc) • 775 B
JSON
{
"extends": "airbnb",
"rules": {
"space-in-parens": ["error", "always", { "exceptions": ["{}"] }],
"comma-style": ["error", "first", { "exceptions": { "ArrayExpression": true, "ObjectExpression": true } }],
"comma-dangle": ["error", "only-multiline"],
"space-before-function-paren": ["error", "never"],
"func-names": 0,
"no-param-reassign": 0,
"one-var-declaration-per-line": ["error", "initializations"],
"no-underscore-dangle": 0,
// es6
"object-shorthand": 0,
"one-var": ["error", "always"],
"no-var": 0,
"prefer-template": 0,
"prefer-arrow-callback": 0,
"prefer-rest-params": 0
},
"env": {
"mocha": true
},
"globals": {
"expect": true
}
}