mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-07 21:48:24 +00:00
* c * we * working * work on searchable props * organize * workinng * accept siteUrl as parameter * qw * a * work on display * work on propertyBagDisplay * ZX * qwe * qwd * qdw * qdw * refactoring * qw * qw * qwd * awd * er * git popup on disoplay working * 123 * qw * asd * works * Working! * qweqwwe * asd * linting * tslint * enable edit all properties * edit all props * sort not quite working * sort working * sort working * now really! * fdg * Added MessageDisplay * separete messagedisplay for panel * added PropertyBagEditPanel * Implement fileters site list * new props * Filters working * add addn'l parameters * extracted User Filetrs * added dropdowns to coimmand bar * qw * filters * ads * qwe * sdf * work on user filters * dwq * qw * add global nab menu * filterstate * qwe * qwe * fixed filters on filtered site list * convert params in webparr * work on men us * fix nav webpart. Cleanup Descriptions * clean linting errors * qwe * added comments * fix href in menu * readme * fix render of bolean in list * add images * Update README.md * Update README.md * Update README.md * fix copy-assets.json * cleaned up webpart names and descriptions * fix issue with menu and blank props * fix readme
51 lines
1.6 KiB
JSON
51 lines
1.6 KiB
JSON
{
|
|
// Display errors as warnings
|
|
"displayAsWarning": true,
|
|
// The TSLint task may have been configured with several custom lint rules
|
|
// before this config file is read (for example lint rules from the tslint-microsoft-contrib
|
|
// project). If true, this flag will deactivate any of these rules.
|
|
"removeExistingRules": true,
|
|
// When true, the TSLint task is configured with some default TSLint "rules.":
|
|
"useDefaultConfigAsBase": false,
|
|
// Since removeExistingRules=true and useDefaultConfigAsBase=false, there will be no lint rules
|
|
// which are active, other than the list of rules below.
|
|
"lintConfig": {
|
|
// Opt-in to Lint rules which help to eliminate bugs in JavaScript
|
|
"rules": {
|
|
"class-name": false,
|
|
"export-name": false,
|
|
"forin": false,
|
|
"label-position": false,
|
|
"member-access": true,
|
|
"no-arg": false,
|
|
"no-console": false,
|
|
"no-construct": false,
|
|
"no-duplicate-case": true,
|
|
|
|
"no-unused-variable":"true",
|
|
|
|
"no-duplicate-variable": true,
|
|
"no-eval": false,
|
|
"no-function-expression": true,
|
|
"no-internal-module": true,
|
|
"no-shadowed-variable": true,
|
|
"no-switch-case-fall-through": true,
|
|
"no-unnecessary-semicolons": true,
|
|
"no-unused-expression": true,
|
|
"no-unused-imports": true,
|
|
|
|
|
|
"no-use-before-declare": true,
|
|
"no-with-statement": true,
|
|
"semicolon": true,
|
|
"trailing-comma": false,
|
|
"typedef": false,
|
|
"typedef-whitespace": false,
|
|
"use-named-parameter": true,
|
|
"valid-typeof": true,
|
|
"variable-name": false,
|
|
"whitespace": false,
|
|
"prefer-const": true
|
|
}
|
|
}
|
|
} |