Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: tailwind support #156

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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'],
};