Skip to content

Commit

Permalink
feat: tailwind support
Browse files Browse the repository at this point in the history
  • Loading branch information
hunger-programmer committed Feb 27, 2024
1 parent 0a901f1 commit 15f1b8c
Show file tree
Hide file tree
Showing 40 changed files with 3,249 additions and 10,465 deletions.
65 changes: 33 additions & 32 deletions .eslintrc.js
@@ -1,42 +1,43 @@
module.exports = {
"extends": "eslint:recommended",
"plugins": [
"import"
extends: ['eslint:recommended', 'eslint-config-airbnb-base', 'prettier'],
plugins: [
'import',
],
"env": {
"browser": true,
"es6": true,
"node": true
env: {
browser: true,
es6: true,
node: true,
},
"parserOptions": {
"ecmaVersion": 2017
parserOptions: {
'ecmaVersion': 2020,
},
"rules": {
"no-undefined": "off",
"no-var": "off",
"indent": [
"warn",
4
rules: {
'no-undefined': 'off',
'no-var': 'off',
indent: [
'warn',
4,
],
"no-console": "off",
"no-unused-vars": [
"error",
'no-console': 'off',
'no-unused-vars': [
'error',
{
"argsIgnorePattern": "next"
}
argsIgnorePattern: 'next',
},
],
"valid-jsdoc": [
"error",
'valid-jsdoc': [
'error',
{
"requireParamDescription": false,
"requireReturnDescription": false
}
requireParamDescription: false,
requireReturnDescription: false,
},
],
"max-nested-callbacks": [
"error",
5
'max-nested-callbacks': [
'error',
5,
],
"camelcase": "off",
"padded-blocks": "off"
}
}
camelcase: 'off',
'padded-blocks': 'off',
'import/no-extraneous-dependencies': ['error', {'devDependencies': true}]
},
};
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -34,4 +34,4 @@ For this Example app a simple backend application is exposed.
The contents for the backend application can be found in the `/server` directory.

### Account-sdk-browser usage
The frontend code is placed in the `/public` directory, and usage of SDK can be found in [index.js](public/index.js).
The frontend code is placed in the `/public` directory, and usage of SDK can be found in [login.js](public%2FsdkMethods%2Flogin.js).
4 changes: 2 additions & 2 deletions commitlint.config.js
@@ -1,3 +1,3 @@
module.exports = {
extends: ['@commitlint/config-conventional']
}
extends: ['@commitlint/config-conventional'],
};

0 comments on commit 15f1b8c

Please sign in to comment.