Skip to content

Commit

Permalink
Merge pull request #2 for pilot_indirectSource
Browse files Browse the repository at this point in the history
Add pilot_indirectSource to the home repository.
  • Loading branch information
michael-franke authored Nov 11, 2024
2 parents fa35580 + 1727748 commit 8e9f5f6
Show file tree
Hide file tree
Showing 283 changed files with 29,557 additions and 37 deletions.
1 change: 1 addition & 0 deletions .github/workflows/deploy-to-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- experiments/pilot-02b/
- experiments/pilot-02c/
- experiments/pilot-03a/
- experiments/pilot-indirectSource/

runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 2 additions & 0 deletions experiments/pilot--1/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
vue.config.js
stylelint.config.js
41 changes: 41 additions & 0 deletions experiments/pilot--1/.eslintrc.js
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
}
};
9 changes: 9 additions & 0 deletions experiments/pilot--1/.gitignore
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/
21 changes: 21 additions & 0 deletions experiments/pilot--1/.npmignore
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?
4 changes: 4 additions & 0 deletions experiments/pilot--1/.prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
trailingComma: 'none',
singleQuote: true
};
7 changes: 7 additions & 0 deletions experiments/pilot--1/README.md
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).
Loading

0 comments on commit 8e9f5f6

Please sign in to comment.