Skip to content

Commit 18acbba

Browse files
committed
feat: initial setup of repo
1 parent 2aec318 commit 18acbba

16 files changed

+23667
-31
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/node_modules
2+
/dist

.eslintrc.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: ['@equinor/eslint-config-fusion/react'],
3+
}

.gitignore

+6-31
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,6 @@ coverage
2525
# nyc test coverage
2626
.nyc_output
2727

28-
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29-
.grunt
30-
31-
# Bower dependency directory (https://bower.io/)
32-
bower_components
33-
3428
# node-waf configuration
3529
.lock-wscript
3630

@@ -75,30 +69,11 @@ typings/
7569
# parcel-bundler cache (https://parceljs.org/)
7670
.cache
7771

78-
# Next.js build output
79-
.next
80-
81-
# Nuxt.js build / generate output
82-
.nuxt
83-
dist
84-
85-
# Gatsby files
86-
.cache/
87-
# Comment in the public line in if your project uses Gatsby and *not* Next.js
88-
# https://nextjs.org/blog/next-9-1#public-directory-support
89-
# public
90-
91-
# vuepress build output
92-
.vuepress/dist
93-
94-
# Serverless directories
95-
.serverless/
96-
97-
# FuseBox cache
98-
.fusebox/
72+
# npm local install
73+
.yalc
74+
yalc.lock
9975

100-
# DynamoDB Local files
101-
.dynamodb/
10276

103-
# TernJS port file
104-
.tern-port
77+
# ignore lock file of packages - might include later, usally conflixt with hoisting
78+
packages/**/package-lock.json
79+
packages/**/dist

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"printWidth": 120,
3+
"singleQuote": true
4+
}

commitlint.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
module.exports = {extends: ['@commitlint/config-conventional']};

lerna.json

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"version": "independent",
3+
"command": {
4+
"bootstrap": {
5+
"hoist": true,
6+
"npmClientArgs": [
7+
"--no-package-lock"
8+
]
9+
},
10+
"publish": {
11+
"conventionalCommits": true,
12+
"ignoreChanges": [
13+
"*.spec.ts",
14+
"*.md"
15+
],
16+
"message": "chore(release): publish"
17+
}
18+
},
19+
"packages": [
20+
"packages/*"
21+
]
22+
}

0 commit comments

Comments
 (0)