Skip to content

Commit

Permalink
Merge pull request #1 from cmudig/initial
Browse files Browse the repository at this point in the history
commit initial files
  • Loading branch information
frankelavsky authored Apr 10, 2022
2 parents 0b81fc1 + 1ffe312 commit 551a8d8
Show file tree
Hide file tree
Showing 7 changed files with 68 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
yarn-debug.log*
yarn-error.log*
21 changes: 21 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
*.lock
**/node_modules/
**/*.lock
**/*.log
**/*.d.ts
**/*.config.js
**/*.editorconfig
**/*.gitignore
**/LICENSE
**/LICENSE HEADER
.prettierignore
*.log
**/*.png
**/*.jpg
**/*.ico
**/*.svg
**/*.prod
**/*.staging
**/build/
**/*.snap
**/*.env
13 changes: 13 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"printWidth": 120,
"singleQuote": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "none",
"bracketSpacing": true,
"insertPragma": false,
"semi": true,
"requirePragma": false,
"proseWrap": "preserve",
"arrowParens": "avoid"
}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# data-navigator

A JavaScript library that allows for serial navigation of data structures using keyboard and touch inputs.
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = function dataNavigator() {
console.log('data navigator has no code yet!');
};
19 changes: 19 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "data-navigator",
"author": "Frank Elavsky",
"version": "0.0.1",
"keywords": [
"visualization",
"accessibility",
"touch",
"keyboard"
],
"description": "Data-navigator is a JavaScript library that allows for serial navigation of data structures using keyboard and touch inputs.",
"scripts": {
"prettier-all-check": "prettier --config ./.prettierrc --ignore ./.prettierignore --debug-check \"**/*.{js,jsx,ts,tsx,html,jsx,json,css,scss,md}\"",
"prettier-all": "prettier --config ./.prettierrc --ignore ./.prettierignore --write \"**/*.{js,jsx,ts,tsx,html,jsx,json,css,scss,md}\""
},
"dependencies": {
"prettier": "^2.6.2"
}
}
8 changes: 8 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1


prettier@^2.6.2:
version "2.6.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.6.2.tgz#e26d71a18a74c3d0f0597f55f01fb6c06c206032"
integrity sha512-PkUpF+qoXTqhOeWL9fu7As8LXsIUZ1WYaJiY/a7McAQzxjk82OF0tibkFXVCDImZtWxbvojFjerkiLb0/q8mew==

0 comments on commit 551a8d8

Please sign in to comment.