├── LICENSE ├── README.md ├── index.js ├── package.json ├── template-react-ts ├── .eslintrc.json ├── .prettierrc ├── .stylelintrc.json ├── README.md ├── _gitignore ├── package.json ├── parcel.d.ts ├── public │ ├── index.html │ └── robots.txt ├── src │ ├── App.tsx │ ├── index.tsx │ └── styles │ │ ├── abstracts │ │ ├── _functions.scss │ │ └── _variables.scss │ │ ├── app.module.scss │ │ ├── base │ │ ├── _reset.scss │ │ └── _typography.scss │ │ └── index.scss └── tsconfig.json ├── template-react ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .stylelintrc.json ├── README.md ├── _gitignore ├── package.json ├── public │ ├── index.html │ └── robots.txt └── src │ ├── App.js │ ├── index.js │ └── styles │ ├── abstracts │ ├── _functions.scss │ └── _variables.scss │ ├── app.module.scss │ ├── base │ ├── _reset.scss │ └── _typography.scss │ └── index.scss ├── template-vanilla-ts ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .stylelintrc.json ├── .tsconfig.json ├── README.md ├── _gitignore ├── package.json └── src │ ├── index.html │ ├── index.ts │ ├── robots.txt │ └── styles │ ├── _app.scss │ ├── abstracts │ ├── _functions.scss │ └── _variables.scss │ ├── base │ ├── _reset.scss │ └── _typography.scss │ └── index.scss └── template-vanilla ├── .eslintrc.json ├── .gitignore ├── .prettierrc ├── .stylelintrc.json ├── README.md ├── _gitignore ├── package.json └── src ├── index.html ├── index.js ├── robots.txt └── styles ├── _app.scss ├── abstracts ├── _functions.scss └── _variables.scss ├── base ├── _reset.scss └── _typography.scss └── index.scss /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/package.json -------------------------------------------------------------------------------- /template-react-ts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/.eslintrc.json -------------------------------------------------------------------------------- /template-react-ts/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template-react-ts/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/.stylelintrc.json -------------------------------------------------------------------------------- /template-react-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/README.md -------------------------------------------------------------------------------- /template-react-ts/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .parcel-cache/ 3 | dist/ -------------------------------------------------------------------------------- /template-react-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/package.json -------------------------------------------------------------------------------- /template-react-ts/parcel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/parcel.d.ts -------------------------------------------------------------------------------- /template-react-ts/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/public/index.html -------------------------------------------------------------------------------- /template-react-ts/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/public/robots.txt -------------------------------------------------------------------------------- /template-react-ts/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/App.tsx -------------------------------------------------------------------------------- /template-react-ts/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/index.tsx -------------------------------------------------------------------------------- /template-react-ts/src/styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /template-react-ts/src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/styles/abstracts/_variables.scss -------------------------------------------------------------------------------- /template-react-ts/src/styles/app.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/styles/app.module.scss -------------------------------------------------------------------------------- /template-react-ts/src/styles/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/styles/base/_reset.scss -------------------------------------------------------------------------------- /template-react-ts/src/styles/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/styles/base/_typography.scss -------------------------------------------------------------------------------- /template-react-ts/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/src/styles/index.scss -------------------------------------------------------------------------------- /template-react-ts/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react-ts/tsconfig.json -------------------------------------------------------------------------------- /template-react/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/.eslintrc.json -------------------------------------------------------------------------------- /template-react/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .parcel-cache/ 3 | dist/ -------------------------------------------------------------------------------- /template-react/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template-react/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/.stylelintrc.json -------------------------------------------------------------------------------- /template-react/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/README.md -------------------------------------------------------------------------------- /template-react/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .parcel-cache/ 3 | dist/ -------------------------------------------------------------------------------- /template-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/package.json -------------------------------------------------------------------------------- /template-react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/public/index.html -------------------------------------------------------------------------------- /template-react/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/public/robots.txt -------------------------------------------------------------------------------- /template-react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/App.js -------------------------------------------------------------------------------- /template-react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/index.js -------------------------------------------------------------------------------- /template-react/src/styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /template-react/src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/styles/abstracts/_variables.scss -------------------------------------------------------------------------------- /template-react/src/styles/app.module.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/styles/app.module.scss -------------------------------------------------------------------------------- /template-react/src/styles/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/styles/base/_reset.scss -------------------------------------------------------------------------------- /template-react/src/styles/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/styles/base/_typography.scss -------------------------------------------------------------------------------- /template-react/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-react/src/styles/index.scss -------------------------------------------------------------------------------- /template-vanilla-ts/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/.eslintrc.json -------------------------------------------------------------------------------- /template-vanilla-ts/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .parcel-cache/ -------------------------------------------------------------------------------- /template-vanilla-ts/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template-vanilla-ts/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/.stylelintrc.json -------------------------------------------------------------------------------- /template-vanilla-ts/.tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/.tsconfig.json -------------------------------------------------------------------------------- /template-vanilla-ts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/README.md -------------------------------------------------------------------------------- /template-vanilla-ts/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .parcel-cache/ -------------------------------------------------------------------------------- /template-vanilla-ts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/package.json -------------------------------------------------------------------------------- /template-vanilla-ts/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/index.html -------------------------------------------------------------------------------- /template-vanilla-ts/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/index.ts -------------------------------------------------------------------------------- /template-vanilla-ts/src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/robots.txt -------------------------------------------------------------------------------- /template-vanilla-ts/src/styles/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/styles/_app.scss -------------------------------------------------------------------------------- /template-vanilla-ts/src/styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /template-vanilla-ts/src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/styles/abstracts/_variables.scss -------------------------------------------------------------------------------- /template-vanilla-ts/src/styles/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/styles/base/_reset.scss -------------------------------------------------------------------------------- /template-vanilla-ts/src/styles/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/styles/base/_typography.scss -------------------------------------------------------------------------------- /template-vanilla-ts/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla-ts/src/styles/index.scss -------------------------------------------------------------------------------- /template-vanilla/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/.eslintrc.json -------------------------------------------------------------------------------- /template-vanilla/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .parcel-cache/ -------------------------------------------------------------------------------- /template-vanilla/.prettierrc: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /template-vanilla/.stylelintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/.stylelintrc.json -------------------------------------------------------------------------------- /template-vanilla/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/README.md -------------------------------------------------------------------------------- /template-vanilla/_gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | .parcel-cache/ -------------------------------------------------------------------------------- /template-vanilla/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/package.json -------------------------------------------------------------------------------- /template-vanilla/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/index.html -------------------------------------------------------------------------------- /template-vanilla/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/index.js -------------------------------------------------------------------------------- /template-vanilla/src/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/robots.txt -------------------------------------------------------------------------------- /template-vanilla/src/styles/_app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/styles/_app.scss -------------------------------------------------------------------------------- /template-vanilla/src/styles/abstracts/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/styles/abstracts/_functions.scss -------------------------------------------------------------------------------- /template-vanilla/src/styles/abstracts/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/styles/abstracts/_variables.scss -------------------------------------------------------------------------------- /template-vanilla/src/styles/base/_reset.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/styles/base/_reset.scss -------------------------------------------------------------------------------- /template-vanilla/src/styles/base/_typography.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/styles/base/_typography.scss -------------------------------------------------------------------------------- /template-vanilla/src/styles/index.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeveloperAspire/swifty-config/HEAD/template-vanilla/src/styles/index.scss --------------------------------------------------------------------------------