Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Commit

Permalink
Release 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benm071 committed Jan 15, 2021
1 parent 2a19a6c commit b721112
Show file tree
Hide file tree
Showing 13 changed files with 1,281 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributing to eslint-config-oraclejet

*Copyright (c) 2014, 2020 Oracle and/or its affiliates
*Copyright (c) 2014, 2021 Oracle and/or its affiliates
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/*

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# eslint-config-oraclejet

Copyright (c) 2020 Oracle and/or its affiliates.
Copyright (c) 2021 Oracle and/or its affiliates.

Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# @oracle/eslint-config-oraclejet 9.2.0
# @oracle/eslint-config-oraclejet 10.0.0

This package contains the ESLint configurations used by the Oracle JET project. These configurations come in two flavors:

Expand Down Expand Up @@ -133,5 +133,5 @@ While we would like to leave this rule enabled, we are currently seeing some fal
Oracle JET is an open source project. Pull Requests are currently not being accepted. See [CONTRIBUTING](https://github.com/oracle/eslint-config-oraclejet/blob/master/CONTRIBUTING.md) for details.

## [License](https://github.com/oracle/eslint-config-oraclejet/blob/master/LICENSE)
Copyright (c) 2020 Oracle and/or its affiliates and released under the
Copyright (c) 2021 Oracle and/or its affiliates and released under the
[Universal Permissive License (UPL)](https://oss.oracle.com/licenses/upl/), Version 1.0
3 changes: 3 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Release Notes for eslint-config-oraclejet ##

### 10.0.0
* Updated eslint-config-airbnb-base

### 9.0.0
* Added es6-browser for browser-based es6 code

Expand Down
2 changes: 1 addition & 1 deletion es5.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand Down
19 changes: 17 additions & 2 deletions es5/base.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand All @@ -20,6 +20,7 @@ module.exports = {
"rules": {
"comma-dangle": "off",
"func-names": "off",
"function-paren-newline": "off",
"linebreak-style": "off",
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
Expand All @@ -31,6 +32,20 @@ module.exports = {
ignoreRegExpLiterals: true,
ignoreStrings: true,
ignoreTemplateLiterals: true,
}],
}],
"prefer-promise-reject-errors": "off",
"object-curly-newline": "off",
'spaced-comment': ['error', 'always', {
line: {
exceptions: ['-', '+'],
markers: ['=', '!'], // space here to support sprockets directives
},
block: {
exceptions: ['-', '+'],
markers: ['=', '!'], // space here to support sprockets directives
balanced: false,
}
}],
"switch-colon-spacing": "off",
}
}
2 changes: 1 addition & 1 deletion es6-browser.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand Down
18 changes: 17 additions & 1 deletion es6-browser/base.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand All @@ -18,12 +18,28 @@ module.exports = {
"comma-dangle": "off",
"no-underscore-dangle": "off",
"func-names": "off",
"function-paren-newline": "off",
"import/no-unresolved" : "off",
"indent" : "off",
"linebreak-style": "off",
"no-console" : "off",
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
"no-restricted-globals": "off",
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
"object-curly-newline": "off",
"prefer-destructuring": "off",
"prefer-promise-reject-errors": "off",
'spaced-comment': ['error', 'always', {
line: {
exceptions: ['-', '+'],
markers: ['=', '!'], // space here to support sprockets directives
},
block: {
exceptions: ['-', '+'],
markers: ['=', '!'], // space here to support sprockets directives
balanced: false,
}
}],
"strict" : "off",
"vars-on-top": "off",
"max-len": ['error', 100, 2, {
Expand Down
2 changes: 1 addition & 1 deletion es6.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand Down
18 changes: 17 additions & 1 deletion es6/base.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand All @@ -12,12 +12,28 @@ module.exports = {
"comma-dangle": "off",
"no-underscore-dangle": "off",
"func-names": "off",
"function-paren-newline": "off",
"import/no-unresolved" : "off",
"indent" : "off",
"linebreak-style": "off",
"no-console" : "off",
"no-plusplus": ["error", {"allowForLoopAfterthoughts": true }],
"no-restricted-globals": "off",
"no-use-before-define" : ["error", {"functions" : false, "classes" : true}],
"object-curly-newline": "off",
"prefer-destructuring": "off",
"prefer-promise-reject-errors": "off",
'spaced-comment': ['error', 'always', {
line: {
exceptions: ['-', '+'],
markers: ['=', '!'], // space here to support sprockets directives
},
block: {
exceptions: ['-', '+'],
markers: ['=', '!'], // space here to support sprockets directives
balanced: false,
}
}],
"strict" : "off",
}
};
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
Copyright (c) 2015, 2020, Oracle and/or its affiliates.
Copyright (c) 2015, 2021, Oracle and/or its affiliates.
Licensed under The Universal Permissive License (UPL), Version 1.0
as shown at https://oss.oracle.com/licenses/upl/
Expand Down
Loading

0 comments on commit b721112

Please sign in to comment.