Skip to content

Commit

Permalink
chore: configs
Browse files Browse the repository at this point in the history
  • Loading branch information
niekvanstaveren committed Sep 23, 2021
1 parent a7836f7 commit e1977f8
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# http://editorconfig.org

root = true

[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true

[*.md]
insert_final_newline = false
trim_trailing_whitespace = false
17 changes: 17 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
env:
browser: true
es2021: true
extends:
- airbnb
- prettier
parser: 'babel-eslint'
parserOptions:
ecmaFeatures:
jsx: true
ecmaVersion: 12
sourceType: module
plugins:
- prettier
rules: {
import/no-extraneous-dependencies: off
}
4 changes: 4 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"printWidth": 120,
"singleQuote": true
}
9 changes: 9 additions & 0 deletions assets/sn-pivot-table.qext
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "sn-pivot-table",
"version": "0.0.0",
"description": "",
"author": "QlikTech International AB",
"icon": "extension",
"type": "visualization",
"supernova": true
}
4 changes: 4 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
plugins: ['react-native-web'],
presets: ['@babel/preset-env', '@babel/preset-react'],
};

0 comments on commit e1977f8

Please sign in to comment.