Skip to content

Commit

Permalink
fix: Settings Viewer Packages by Migrating to Material-UI (#542)
Browse files Browse the repository at this point in the history
* Switch to material-ui
* Wire up actions and improve the visuals
* Address spelling issues
* Update eslint and address linter errors
* Update return types
* Update snapshots
  • Loading branch information
Jason3S authored Sep 16, 2020
1 parent ef78882 commit 8793be3
Show file tree
Hide file tree
Showing 61 changed files with 29,920 additions and 33,081 deletions.
20 changes: 10 additions & 10 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,23 @@ module.exports = {
],
rules: {
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
"quotes": [ "warn", "single", { "avoidEscape": true } ],
'quotes': [ 'warn', 'single', { 'avoidEscape': true } ],

// e.g. "@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": [ "warn", { ignoreRestSiblings: true, argsIgnorePattern: "^_" } ],
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-empty-interface': 'off',
'@typescript-eslint/no-inferrable-types': 'off',
'@typescript-eslint/no-empty-function': 'off',
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unused-vars': [ 'warn', { ignoreRestSiblings: true, argsIgnorePattern: '^_' } ],
},
overrides: [
{
files: ['*.json'],
rules: {
"quotes": [ "error", "double" ],
'quotes': [ 'error', 'double' ],
}
}
],
Expand Down
7 changes: 7 additions & 0 deletions cspell-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,15 @@ ESNEXT
FIXURL
GOOG
Gemfile
HSLA
HSVA
IANA
Interop
Jekylling
Jupyter
Kramdown
Lunr
Preformat
Staticman's
acanthopterygious
algolia
Expand Down Expand Up @@ -41,6 +44,7 @@ languageclient
lerna
lightblue
lightbulb
lightgrey
mademistakes
michaelrose
minification
Expand All @@ -56,9 +60,12 @@ paginator
permalinks
quotemark
restructuredtext
rmwc
scrollbar
shortname
shrinkwrap
sourcemap
squigglies
staticman
staticmanapp
streetsidesoftware
Expand Down
Loading

0 comments on commit 8793be3

Please sign in to comment.