editor.js/tslint.json
George Berezhnoy 669c11eaa5
Paste handling improvements (#534)
* Make on paste callback non-static method

* Add docs

* change tools.md header levels

* some docs improvements

* upd docs

* Types improvements

* add image tool for testing

* Fix file drag'n'drop

* improve log on paste

* Update submodules

* Update bundle

* Update paragraph submodule

* Fix some bugs with blocks replacement
Remove tag from HTMLPasteEvent

* Use production webpack mode

* minimize: true

* Update docs

* Update submodules

* Update bundle
2018-11-29 12:16:06 +03:00

29 lines
689 B
JSON

{
"extends": "tslint:recommended",
"linterOptions": {
"exclude": [
"node_modules"
]
},
"rules": {
"indent": [true, "spaces", 2],
"interface-name": false,
"quotemark": [true, "single"],
"no-console": false,
"no-empty-interface": false,
"one-variable-per-declaration": false,
"object-literal-sort-keys": false,
"ordered-imports": [true, {
"import-sources-order": "any",
"named-imports-order": "case-insensitive"
}],
"no-string-literal": false,
"no-empty": false,
"no-namespace": false,
"variable-name": [true, "allow-leading-underscore", "allow-pascal-case"]
},
"globals": {
"require": true
}
}