Skip to content

Commit

Permalink
feat: 🎸 add xslt package
Browse files Browse the repository at this point in the history
  • Loading branch information
touv committed Feb 2, 2022
1 parent 653a28a commit 1d18016
Show file tree
Hide file tree
Showing 15 changed files with 24,076 additions and 0 deletions.
2 changes: 2 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@
- [ark](plugin-ark.md)
- [teeft](plugin-teeft.md)
- [libpostal](plugin-libpostal.md)
- [spawn](plugin-spawn.md)
- [xslt](plugin-xslt.md)

- Exemples

Expand Down
18 changes: 18 additions & 0 deletions packages/xslt/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"parser": "babel-eslint",
"env": {
"browser": true,
"mocha": true,
"node": true,
"jest": true
},
"extends": "airbnb-base",
"rules": {
"indent": ["error", 4],
"max-len": ["error", {"code": 120, "tabWidth": 4, "ignoreUrls": true}],
"no-console": ["error", { "allow": ["warn"] }],
"no-underscore-dangle": ["error", { "allow": ["_id", "_error"] }],
"import/no-extraneous-dependencies": "off",
"no-param-reassign": ["error", { "props": false }]
}
}
8 changes: 8 additions & 0 deletions packages/xslt/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
*.tgz
*.swp
*.swo
README.html
node_modules
coverage/
*.sw?
lib
7 changes: 7 additions & 0 deletions packages/xslt/.npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Ignore all files by default
.*
*

# White list only the required files
!lib/**/*
!bin/*
2 changes: 2 additions & 0 deletions packages/xslt/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
; see https://docs.npmjs.com/misc/config#save-exact
save-exact = true
Loading

0 comments on commit 1d18016

Please sign in to comment.