Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
sadick254 authored Sep 3, 2021
2 parents d6c6e2e + 40327e3 commit 400a8c2
Show file tree
Hide file tree
Showing 691 changed files with 106,199 additions and 60,981 deletions.
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
**/spec/fixtures/**/*.js
node_modules
/vendor/
/out/
44 changes: 44 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"extends": [
"./script/node_modules/eslint-config-standard/eslintrc.json",
"./script/node_modules/eslint-config-prettier/index.js",
"./script/node_modules/eslint-config-prettier/standard.js"
],
"plugins": [
"prettier"
],
"env": {
"browser": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 8,
"ecmaFeatures": {
"jsx": true
}
},
"globals": {
"atom": true,
"snapshotResult": true
},
"rules": {
"standard/no-callback-literal": ["off"],
"node/no-deprecated-api": ["off"],
"prettier/prettier": ["error"]
},
"overrides": [
{
"files": ["spec/**", "**-spec.js", "**.test.js"],
"env": {
"jasmine": true
},
"globals": {
"advanceClock": true,
"fakeClearInterval": true,
"fakeSetInterval": true,
"waitsForPromise": true
}
}
]
}
10 changes: 10 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,13 @@ spec/fixtures/sample.txt text eol=lf

# Windows bash scripts are also Unix LF endings
*.sh eol=lf

# The script executables should be LF so they can be edited on Windows
script/bootstrap text eol=lf
script/build text eol=lf
script/cibuild text eol=lf
script/clean text eol=lf
script/lint text eol=lf
script/postprocess-junit-results text eol=lf
script/test text eol=lf
script/verify-snapshot-script text eol=lf
41 changes: 0 additions & 41 deletions .github/ISSUE_TEMPLATE/Feature_request.md

This file was deleted.

46 changes: 0 additions & 46 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

59 changes: 0 additions & 59 deletions .github/PULL_REQUEST_TEMPLATE/bug_fix.md

This file was deleted.

30 changes: 0 additions & 30 deletions .github/PULL_REQUEST_TEMPLATE/documentation.md

This file was deleted.

70 changes: 0 additions & 70 deletions .github/PULL_REQUEST_TEMPLATE/feature_change.md

This file was deleted.

55 changes: 0 additions & 55 deletions .github/PULL_REQUEST_TEMPLATE/performance_improvement.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lockComment: >
any recent activity after it was closed. If you can still reproduce this issue in
[Safe Mode](https://flight-manual.atom.io/hacking-atom/sections/debugging/#using-safe-mode)
then please open a new issue and fill out
[the entire issue template](https://github.com/atom/atom/blob/master/ISSUE_TEMPLATE.md)
[the entire issue template](https://github.com/atom/.github/blob/master/.github/ISSUE_TEMPLATE/bug_report.md)
to ensure that we have enough information to address your issue. Thanks!
# Issues or pull requests with these labels will not be locked
exemptLabels:
Expand Down
Loading

0 comments on commit 400a8c2

Please sign in to comment.