-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 for pilot_indirectSource
Add pilot_indirectSource to the home repository.
- Loading branch information
Showing
283 changed files
with
29,557 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
vue.config.js | ||
stylelint.config.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
module.exports = { | ||
// https://eslint.org/docs/user-guide/configuring#configuration-cascading-and-hierarchy | ||
// This option interrupts the configuration hierarchy at this file | ||
// Remove this if you have an higher level ESLint config file (it usually happens into a monorepos) | ||
root: true, | ||
extends: [ | ||
// Base ESLint recommended rules | ||
'eslint:recommended', | ||
|
||
// Uncomment any of the lines below to choose desired strictness, | ||
// but leave only one uncommented! | ||
// See https://eslint.vuejs.org/rules/#available-rules | ||
// 'plugin:vue/essential', // Priority A: Essential (Error Prevention) | ||
// 'plugin:vue/strongly-recommended', // Priority B: Strongly Recommended (Improving Readability) | ||
'plugin:vue/recommended', // Priority C: Recommended (Minimizing Arbitrary Choices and Cognitive Overhead) | ||
// '@vue/prettier' | ||
'plugin:prettier/recommended', | ||
// usage with Prettier, provided by 'eslint-config-prettier'. | ||
'prettier', | ||
|
||
'prettier/vue' | ||
], | ||
plugins: [ | ||
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-file | ||
// required to lint *.vue files | ||
'vue' | ||
|
||
// https://github.com/typescript-eslint/typescript-eslint/issues/389#issuecomment-509292674 | ||
// Prettier has not been included as plugin to avoid performance impact | ||
// add it as an extension for your IDE | ||
], | ||
rules: { | ||
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off', | ||
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off' | ||
}, | ||
parserOptions: { | ||
parser: 'babel-eslint', | ||
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features | ||
sourceType: 'module' // Allows for the use of imports | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
/.DS_Store | ||
/data+analysis/.DS_Store | ||
/data+analysis/.Rhistory | ||
/node_modules/ | ||
/data+analysis/02-data-exploration_cache/ | ||
/data+analysis/02-data-exploration_files/ | ||
/data+analysis/01-pilots-1ab-choose-explain/.Rhistory | ||
/data+analysis/01-pilots-1ab-choose-explain/02-data-exploration_cache/ | ||
/data+analysis/01-pilots-1ab-choose-explain/02-data-exploration_files/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
.DS_Store | ||
node_modules | ||
/dist | ||
|
||
# local env files | ||
.env.local | ||
.env.*.local | ||
|
||
# Log files | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# Editor directories and files | ||
.idea | ||
.vscode | ||
*.suo | ||
*.ntvs* | ||
*.njsproj | ||
*.sln | ||
*.sw? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
module.exports = { | ||
trailingComma: 'none', | ||
singleQuote: true | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# magpie3-causal-implicature | ||
|
||
[Magpie](https://magpie-experiments.org/) experiment for a simple experiment into "clausal implicatures", i.e., inferring causal information where none was explicitly conveyed. | ||
|
||
This is the version **Pilot 01b**. | ||
|
||
Live version of the experiment [here](https://magpie-ea.github.io/magpie3-causal-implicature/experiments/pilot-01b). |
Oops, something went wrong.