Skip to content

Commit

Permalink
rc files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Psichorex committed Apr 27, 2024
1 parent ad81728 commit 4bcc86d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Lombiq.NodeJs.Extensions.Samples/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module.exports = {
// Setting root=true prevents ESLint from taking into account .eslintrc files higher up in the directory tree.
root: true,

// The following path may have to be adjusted to your directory structure.
extends: './node_modules/nodejs-extensions/config/.eslintrc.lombiq-base.js',

// Add custom rules and overrides here.
rules: {
},
};
7 changes: 7 additions & 0 deletions Lombiq.NodeJs.Extensions.Samples/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// The following path may have to be adjusted to your directory structure.
const lombiqConfig = require('./node_modules/nodejs-extensions/config/.prettierrc.lombiq-base.js');

module.exports = {
...lombiqConfig,
// Add custom rules and overrides here.
}
8 changes: 8 additions & 0 deletions Lombiq.NodeJs.Extensions.Samples/.stylelintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
module.exports = {
// The following path may have to be adjusted to your directory structure.
extends: './node_modules/nodejs-extensions/config/.stylelintrc.lombiq-base.js',

// Add custom rules and overrides here.
rules: {
},
};

3 comments on commit 4bcc86d

@Piedone
Copy link
Member

@Piedone Piedone commented on 4bcc86d May 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Psichorex @barthamark why are these necessary, any why is this commit directly in dev, while not being updated in OSOCE?

@Psichorex
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That was commited by a mistake probably. I reverted this. Nothing should be on dev.

@Piedone
Copy link
Member

@Piedone Piedone commented on 4bcc86d May 2, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK, thanks!

Please sign in to comment.