forked from parse-community/parse-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release: (34 commits) chore(release): 5.3.0 [skip ci] release chore(release): 5.3.0-beta.1 [skip ci] release chore(release): 5.2.0-alpha.28 [skip ci] feat: Add security checks page (parse-community#2491) refactor: Security upgrade semver from 7.3.7 to 7.5.2 (parse-community#2493) refactor: Add lint and prettier (parse-community#2492) chore(release): 5.2.0-alpha.27 [skip ci] fix: Adding a file when adding a new row in the data browser doesn't show filename (parse-community#2471) chore(release): 5.2.0-alpha.26 [skip ci] fix: File extension is hidden in file field when editing object in modal dialog in data browser (parse-community#2472) chore(release): 5.2.0-alpha.25 [skip ci] fix: Incorrect highlight maker position in class list in data browser (parse-community#2490) chore(release): 5.2.0-alpha.24 [skip ci] feat: Add support for confirmation dialog before script execution in data browser (parse-community#2481) chore(release): 5.2.0-alpha.23 [skip ci] feat: Add parameter `selectedField` to script payload to determine which object field was selected when script was invoked (parse-community#2483) chore(release): 5.2.0-alpha.22 [skip ci] feat: Add refresh button to Cloud Config page (parse-community#2480) ... # Conflicts: # package-lock.json # src/components/LogView/LogViewEntry.react.js # src/dashboard/Data/Jobs/Jobs.react.js # src/dashboard/Data/Jobs/JobsForm.react.js # src/lib/DateUtils.js
- Loading branch information
Showing
364 changed files
with
16,958 additions
and
12,531 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,39 @@ | ||
{ | ||
"root": true, | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"es6": true, | ||
"node": true, | ||
"browser": true | ||
}, | ||
"parser": "@babel/eslint-parser", | ||
"extends": "eslint:recommended", | ||
"plugins": [ | ||
"react" | ||
], | ||
"parserOptions": { | ||
"sourceType": "module" | ||
"ecmaVersion": 6, | ||
"sourceType": "module", | ||
"requireConfigFile": false | ||
}, | ||
"plugins": ["react"], | ||
"rules": { | ||
"indent": ["error", 2, { "SwitchCase": 1 }], | ||
"linebreak-style": ["error", "unix"], | ||
"no-trailing-spaces": 2, | ||
"eol-last": 2, | ||
"space-in-parens": ["error", "never"], | ||
"no-multiple-empty-lines": 1, | ||
"prefer-const": "error", | ||
"space-infix-ops": "error", | ||
"no-useless-escape": "off", | ||
"require-atomic-updates": "off", | ||
"react/jsx-uses-vars": 1, | ||
"react/jsx-uses-react": 1, | ||
"react/react-in-jsx-scope": 1, | ||
"no-console": 0, | ||
"no-case-declarations": 0, | ||
"quotes": ["error", "single"], | ||
"eol-last": ["error", "always"] | ||
"no-var": "error", | ||
"no-prototype-builtins": "off", | ||
"curly": ["error", "all"] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
semi: true | ||
trailingComma: "es5" | ||
singleQuote: true | ||
arrowParens: "avoid" | ||
printWidth: 100 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.